home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / zht.c < prev    next >
C/C++ Source or Header  |  1997-07-07  |  7KB  |  244 lines

  1. /* Copyright (C) 1989, 1991, 1993, 1994, 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* zht.c */
  20. /* Halftone definition operators */
  21. #include "ghost.h"
  22. #include "memory_.h"
  23. #include "errors.h"
  24. #include "oper.h"
  25. #include "estack.h"
  26. #include "gsstruct.h"            /* must precede igstate.h, */
  27.                     /* because of #ifdef in gsht.h */
  28. #include "ialloc.h"
  29. #include "igstate.h"
  30. #include "gsmatrix.h"
  31. #include "gxdevice.h"            /* for gzht.h */
  32. #include "gzht.h"
  33. #include "gsstate.h"
  34. #include "iht.h"        /* prototypes */
  35. #include "store.h"
  36.  
  37. /* Forward references */
  38. private int screen_sample(P1(os_ptr));
  39. private int set_screen_continue(P1(os_ptr));
  40. private int screen_cleanup(P1(os_ptr));
  41.  
  42. /* - .currenthalftone <dict> 0 */
  43. /* - .currenthalftone <frequency> <angle> <proc> 1 */
  44. /* - .currenthalftone <red_freq> ... <gray_proc> 2 */
  45. private int
  46. zcurrenthalftone(register os_ptr op)
  47. {    gs_halftone ht;
  48.     gs_currenthalftone(igs, &ht);
  49.     switch ( ht.type )
  50.     {
  51.     case ht_type_screen:
  52.         push(4);
  53.         make_real(op - 3, ht.params.screen.frequency);
  54.         make_real(op - 2, ht.params.screen.angle);
  55.         op[-1] = istate->screen_procs.colored.gray;
  56.         make_int(op, 1);
  57.         break;
  58.     case ht_type_colorscreen:
  59.         push(13);
  60.         {    int i;
  61.             for ( i = 0; i < 4; i++ )
  62.             {    os_ptr opc = op - 12 + i * 3;
  63.                 gs_screen_halftone *pht =
  64.                   &ht.params.colorscreen.screens.indexed[i];
  65.                 make_real(opc, pht->frequency);
  66.                 make_real(opc + 1, pht->angle);
  67.                 opc[2] = istate->screen_procs.indexed[i];
  68.             }
  69.         }
  70.         make_int(op, 2);
  71.         break;
  72.     default:        /* Screen was set by sethalftone. */
  73.         push(2);
  74.         op[-1] = istate->halftone;
  75.         make_int(op, 0);
  76.         break;
  77.     }
  78.     return 0;
  79. }
  80.  
  81. /* - .currentscreenlevels <int> */
  82. private int
  83. zcurrentscreenlevels(register os_ptr op)
  84. {    push(1);
  85.     make_int(op, gs_currentscreenlevels(igs));
  86.     return 0;
  87. }
  88.  
  89. /* The setscreen operator is complex because it has to sample */
  90. /* each pixel in the pattern cell, calling a procedure, and then */
  91. /* sort the result into a whitening order. */
  92.  
  93. /* Layout of stuff pushed on estack: */
  94. /*    Control mark, */
  95. /*    [other stuff for other screen-setting operators], */
  96. /*    finishing procedure (or 0), */
  97. /*    spot procedure, */
  98. /*    enumeration structure (as bytes). */
  99. #define snumpush 4
  100. #define sproc esp[-1]
  101. #define senum r_ptr(esp, gs_screen_enum)
  102.  
  103. /* Forward references */
  104. int zscreen_enum_init(P7(os_ptr, const gx_ht_order *, gs_screen_halftone *,
  105.              ref *, int, int (*)(P1(os_ptr)), gs_memory_t *));
  106. private int setscreen_finish(P1(os_ptr));
  107.  
  108. /* <frequency> <angle> <proc> setscreen - */
  109. private int
  110. zsetscreen(register os_ptr op)
  111. {    gs_screen_halftone screen;
  112.     gx_ht_order order;
  113.     int code = zscreen_params(op, &screen);
  114.     gs_memory_t *mem;
  115.  
  116.     if ( code < 0 )
  117.       return code;
  118.     mem = (gs_memory_t *)idmemory->spaces.indexed[r_space_index(op)];
  119.     /*
  120.      * Allocate the halftone in the same VM space as the procedure.
  121.      * This keeps the space relationships consistent.
  122.      */
  123.     code = gs_screen_order_init_memory(&order, igs, &screen,
  124.                gs_currentaccuratescreens(), mem);
  125.     if ( code < 0 )
  126.       return code;
  127.     return zscreen_enum_init(op, &order, &screen, op, 3,
  128.                  setscreen_finish, mem);
  129. }
  130. /* We break out the body of this operator so it can be shared with */
  131. /* the code for Type 1 halftones in sethalftone. */
  132. int
  133. zscreen_enum_init(os_ptr op, const gx_ht_order *porder,
  134.   gs_screen_halftone *psp, ref *pproc, int npop,
  135.   int (*finish_proc)(P1(os_ptr)), gs_memory_t *mem)
  136. {    gs_screen_enum *penum;
  137.     int code;
  138.  
  139.     check_estack(snumpush + 1);
  140.     penum = gs_screen_enum_alloc(imemory, "setscreen");
  141.     if ( penum == 0 )
  142.       return_error(e_VMerror);
  143.     make_istruct(esp + snumpush, 0, penum);    /* do early for screen_cleanup in case of error */
  144.     code = gs_screen_enum_init_memory(penum, porder, igs, psp, mem);
  145.     if ( code < 0 )
  146.     {    screen_cleanup(op);
  147.         return code;
  148.     }
  149.     /* Push everything on the estack */
  150.     make_mark_estack(esp + 1, es_other, screen_cleanup);
  151.     esp += snumpush;
  152.     make_op_estack(esp - 2, finish_proc);
  153.     sproc = *pproc;
  154.     push_op_estack(screen_sample);
  155.     pop(npop);
  156.     return o_push_estack;
  157. }
  158. /* Set up the next sample */
  159. private int
  160. screen_sample(register os_ptr op)
  161. {    gs_screen_enum *penum = senum;
  162.     gs_point pt;
  163.     int code = gs_screen_currentpoint(penum, &pt);
  164.     ref proc;
  165.     switch ( code )
  166.     {
  167.     default:
  168.         return code;
  169.     case 1:
  170.         /* All done */
  171.         if ( real_opproc(esp - 2) != 0 )
  172.             code = (*real_opproc(esp - 2))(op);
  173.         esp -= snumpush;
  174.         screen_cleanup(op);
  175.         return (code < 0 ? code : o_pop_estack);
  176.     case 0:
  177.         ;
  178.     }
  179.     push(2);
  180.     make_real(op - 1, pt.x);
  181.     make_real(op, pt.y);
  182.     proc = sproc;
  183.     push_op_estack(set_screen_continue);
  184.     *++esp = proc;
  185.     return o_push_estack;
  186. }
  187. /* Continuation procedure for processing sampled pixels. */
  188. private int
  189. set_screen_continue(register os_ptr op)
  190. {    double value;
  191.     int code = real_param(op, &value);
  192.  
  193.     if ( code < 0 ) return code;
  194.     code = gs_screen_next(senum, value);
  195.     if ( code < 0 ) return code;
  196.     pop(1);  op--;
  197.     return screen_sample(op);
  198. }
  199. /* Finish setscreen. */
  200. private int
  201. setscreen_finish(os_ptr op)
  202. {    gs_screen_install(senum);
  203.     istate->screen_procs.colored.red = sproc;
  204.     istate->screen_procs.colored.green = sproc;
  205.     istate->screen_procs.colored.blue = sproc;
  206.     istate->screen_procs.colored.gray = sproc;
  207.     make_null(&istate->halftone);
  208.     return 0;
  209. }
  210. /* Clean up after screen enumeration */
  211. private int
  212. screen_cleanup(os_ptr op)
  213. {    ifree_object(esp[snumpush].value.pstruct, "screen_cleanup");
  214.     return 0;
  215. }
  216.  
  217. /* ------ Utility procedures ------ */
  218.  
  219. /* Get parameters for a single screen. */
  220. int
  221. zscreen_params(os_ptr op, gs_screen_halftone *phs)
  222. {    double fa[2];
  223.     int code = num_params(op - 1, 2, fa);
  224.  
  225.     if ( code < 0 )
  226.       return code;
  227.     check_proc(*op);
  228.     phs->frequency = fa[0];
  229.     phs->angle = fa[1];
  230.     return 0;
  231. }
  232.  
  233. /* ------ Initialization procedure ------ */
  234.  
  235. BEGIN_OP_DEFS(zht_op_defs) {
  236.     {"0.currenthalftone", zcurrenthalftone},
  237.     {"0.currentscreenlevels", zcurrentscreenlevels},
  238.     {"3setscreen", zsetscreen},
  239.         /* Internal operators */
  240.     {"0%screen_sample", screen_sample},
  241.     {"1%set_screen_continue", set_screen_continue},
  242.     {"0%setscreen_finish", setscreen_finish},
  243. END_OP_DEFS(0) }
  244.